home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Disc to the Future 2
/
Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin
/
MAC
/
MPW_TOOL
/
TOOLS
/
TOOLS_WI
/
ICON_8
/
MEMMON_F
/
MKCLR.ICN
< prev
next >
Wrap
Text File
|
1990-03-02
|
481b
|
17 lines
# Icon program to preprocess color specification file into C macros
procedure main ()
ws := ' \t'
write ("/* created mechanically -- DO NOT EDIT */")
write ()
while line := read () do line ? {
tab (many (ws))
if ="#" | pos (0) then next # skip comment line
label := tab (upto (ws)) | next
tab (many (ws))
if pos (0) then next
value := tab (upto (ws) | 0)
write ("ColorDefault(\"", label, "\",\"", value, "\")")
}
end